home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1999 February
/
MACPOWER-1999-02.ISO.7z
/
MACPOWER-1999-02.ISO
/
9902⁄AMUG
/
INTERNET
/
PPPop 2.0.1-ppc.sit
/
PPPop2.0.1-PPC
/
PPPop Scripts
/
Script Samples
/
AutoCheck StayOpen
next >
Wrap
Text File
|
1998-10-17
|
603b
|
30 lines
property idletime : 10 * 60 -- number of seconds between runs
property opentime : 2 * 60 -- seconds to await link open
property mailtime : 5 * 60 -- seconds for mail check
on idle
try
tell application "PPPop2"
connect
with timeout of opentime seconds
repeat until (PPP up)
end repeat
end timeout -- will go to error if not open
end tell
with timeout of mailtime seconds
tell application "Eudora Pro 4.0" to connect with sending and checking
activate
end timeout
tell application "PPPop2" to disconnect
on error
beep
end try
return idletime
end idle